home *** CD-ROM | disk | FTP | other *** search
/ Magnum One / Magnum One (Mid-American Digital) (Disc Manufacturing).iso / d7 / hostplus.arc / PUMADOWN.SLT < prev    next >
Text File  |  1990-04-22  |  791b  |  24 lines

  1. /////////////////////////////  PUMADOWN.SLT  ///////////////////////////////
  2. //
  3. // Written and developed by Lawrence Stone, April, 1990
  4. //
  5. // This is a sample script for downloading with the PUMA file transfer
  6. // protocal.
  7. //
  8. // To compile this script for use by Telix, at the DOS prompt type,
  9. // 'cs pumadown'.
  10. //
  11. //////////////////////////////////////////////////////////////////////////////
  12.  
  13. str prg[4] = "PUMA",           // Puma is the protocal program to run.
  14.     cmmd[66] = "r ",           // Note "r" for "receive" is required by PUMA.
  15.     path[64] = "puma";         // Variable to hold download path.
  16.  
  17. main()
  18.  {
  19.   path = _down_dir;
  20.   strcat(cmmd, path);          // Concatenate the command line with file path.
  21.   run(prg, cmmd, 0);           // Run PUMA
  22.  }
  23.  
  24.